home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Windows
/
GrayRegion.cp
< prev
next >
Wrap
Text File
|
2000-06-23
|
311b
|
24 lines
// GrayRegion.cp
#ifndef GrayRegion_h
#include "GrayRegion.h"
#endif
#include <Windows.h>
GrayRegion::GrayRegion()
: region( GetGrayRgn() )
{
}
const GrayRegion& GrayRegion::The()
{
static GrayRegion gray;
return gray;
}
Rectangle GrayRegion::Bounds() const
{
return (*region)->rgnBBox;
}